前言

laravel 为我们提供便携的重定向功能,可以由门面 Redirect,或者全局函数 redirect() 来启用,本篇文章将会介绍重定向功能的具体细节及源码分析。

URI 重定向

重定向功能是由类 UrlGenerator 所实现,这个类需要 request 来进行初始化:

  1. $url = new UrlGenerator(
  2. $routes = new RouteCollection,
  3. $request = Request::create('http://www.foo.com/')
  4. );

重定向到 uri

  • 当我们想要重定向到某个地址时,可以使用 to 函数:
  1. $this->assertEquals('http://www.foo.com/foo/bar', $url->to('foo/bar'));
  • 当我们想要添加额外的路径,可以将数组赋给第二个参数:
  1. $this->assertEquals('https://www.foo.com/foo/bar/baz/boom', $url->to('foo/bar', ['baz', 'boom'], true));
  2. $this->assertEquals('https://www.foo.com/foo/bar/baz?foo=bar', $url->to('foo/bar?foo=bar', ['baz'], true));

强制 https

如果我们想要重定向到 https ,我们可以设置第三个参数为 true :

  1. $this->assertEquals('https://www.foo.com/foo/bar', $url->to('foo/bar', [], true));

或者使用 forceScheme 函数:

  1. $url->forceScheme('https');
  2. $this->assertEquals('https://www.foo.com/foo/bar', $url->to('foo/bar');

强制域名

  1. $url->forceRootUrl('https://www.bar.com');
  2. $this->assertEquals('https://www.bar.com/foo/bar', $url->to('foo/bar');

路径自定义

  1. $url->formatPathUsing(function ($path) {
  2. return '/something'.$path;
  3. });
  4. $this->assertEquals('http://www.foo.com/something/foo/bar', $url->to('foo/bar'));

路由重定向

重定向另一个非常重要的功能是重定向到路由所在的地址中去:

  1. $route = new Route(['GET'], '/named-route', ['as' => 'plain']);
  2. $routes->add($route);
  3. $this->assertEquals('http:/www.bar.com/named-route', $url->route('plain'));

非域名路径

laravel 路由重定向可以选择重定向后的地址是否仍然带有域名,这个特性由第三个参数决定:

  1. $route = new Route(['GET'], '/named-route', ['as' => 'plain']);
  2. $routes->add($route);
  3. $this->assertEquals('/named-route', $url->route('plain', [], false));

重定向端口号

路由重定向可以允许带有 request 自己的端口:

  1. $url = new UrlGenerator(
  2. $routes = new RouteCollection,
  3. $request = Request::create('http://www.foo.com:8080/')
  4. );
  5. $route = new Route(['GET'], 'foo/bar/{baz}', ['as' => 'bar', 'domain' => 'sub.{foo}.com']);
  6. $routes->add($route);
  7. $this->assertEquals('http://sub.taylor.com:8080/foo/bar/otwell', $url->route('bar', ['taylor', 'otwell']));

重定向路径参数绑定

如果路由中含有参数,可以将需要的参数赋给 route 第二个参数:

  1. $route = new Route(['GET'], 'foo/bar/{baz}', ['as' => 'foobar']);
  2. $routes->add($route);
  3. $this->assertEquals('http://www.foo.com/foo/bar/taylor', $url->route('foobar', 'taylor'));

也可以根据参数的命名来指定参数绑定:

  1. $route = new Route(['GET'], 'foo/bar/{baz}/breeze/{boom}', ['as' => 'bar']);
  2. $routes->add($route);
  3. $this->assertEquals('http://www.foo.com/foo/bar/otwell/breeze/taylor', $url->route('bar', ['boom' => 'taylor', 'baz' => 'otwell']));

还可以利用 defaults 函数为重定向提供默认的参数来绑定:

  1. $url->defaults(['locale' => 'en']);
  2. $route = new Route(['GET'], 'foo', ['as' => 'defaults', 'domain' => '{locale}.example.com', function () {
  3. }]);
  4. $routes->add($route);
  5. $this->assertEquals('http://en.example.com/foo', $url->route('defaults'));

重定向路由 querystring 添加

当在 route 函数中赋给的参数多于路径参数的时候,多余的参数会被添加到 querystring 中:

  1. $route = new Route(['GET'], 'foo/bar/{baz}/breeze/{boom}', ['as' => 'bar']);
  2. $routes->add($route);
  3. $this->assertEquals('http://www.foo.com/foo/bar/taylor/breeze/otwell?fly=wall', $url->route('bar', ['taylor', 'otwell', 'fly' => 'wall']));

fragment 重定向

  1. $route = new Route(['GET'], 'foo/bar#derp', ['as' => 'fragment']);
  2. $routes->add($route);
  3. $this->assertEquals('/foo/bar?baz=%C3%A5%CE%B1%D1%84#derp', $url->route('fragment', ['baz' => 'åαф'], false));

路由 action 重定向

我们不仅可以通过路由的别名来重定向,还可以利用路由的控制器方法来重定向:

  1. $route = new Route(['GET'], 'foo/bam', ['controller' => 'foo@bar']);
  2. $routes->add($route);
  3. $this->assertEquals('http://www.foo.com/foo/bam', $url->action('foo@bar'));

可以设定重定向控制器的默认命名空间:

  1. $url->setRootControllerNamespace('namespace');
  2. $route = new Route(['GET'], 'foo/bar', ['controller' => 'namespace\foo@bar']);
  3. $routes->add($route);
  4. $route = new Route(['GET'], 'something/else', ['controller' => 'something\foo@bar']);
  5. $routes->add($route);
  6. $this->assertEquals('http://www.foo.com/foo/bar', $url->action('foo@bar'));
  7. $this->assertEquals('http://www.foo.com/something/else', $url->action('\something\foo@bar'));

UrlRoutable 参数绑定

可以为重定向传入 UrlRoutable 类型的参数,重定向会通过类方法 getRouteKey 来获取对象的某个属性,进而绑定到路由的参数中去。

  1. public function testRoutableInterfaceRoutingWithSingleParameter()
  2. {
  3. $url = new UrlGenerator(
  4. $routes = new RouteCollection,
  5. $request = Request::create('http://www.foo.com/')
  6. );
  7. $route = new Route(['GET'], 'foo/{bar}', ['as' => 'routable']);
  8. $routes->add($route);
  9. $model = new RoutableInterfaceStub;
  10. $model->key = 'routable';
  11. $this->assertEquals('/foo/routable', $url->route('routable', $model, false));
  12. }
  13. class RoutableInterfaceStub implements UrlRoutable
  14. {
  15. public $key;
  16. public function getRouteKey()
  17. {
  18. return $this->{$this->getRouteKeyName()};
  19. }
  20. public function getRouteKeyName()
  21. {
  22. return 'key';
  23. }
  24. }

URI 重定向源码分析

在说重定向的源码之前,我们先了解一下一般的 uri 基本组成:

scheme://domain:port/path?queryString

也就是说,一般 uri 由五部分构成。重定向实际上就是按照各种传入的参数以及属性的设置来重新生成上面的五部分:

  1. public function to($path, $extra = [], $secure = null)
  2. {
  3. if ($this->isValidUrl($path)) {
  4. return $path;
  5. }
  6. $tail = implode('/', array_map(
  7. 'rawurlencode', (array) $this->formatParameters($extra))
  8. );
  9. $root = $this->formatRoot($this->formatScheme($secure));
  10. list($path, $query) = $this->extractQueryString($path);
  11. return $this->format(
  12. $root, '/'.trim($path.'/'.$tail, '/')
  13. ).$query;
  14. }

重定向 scheme

重定向的 scheme 由函数 formatScheme 生成:

  1. public function formatScheme($secure)
  2. {
  3. if (! is_null($secure)) {
  4. return $secure ? 'https://' : 'http://';
  5. }
  6. if (is_null($this->cachedSchema)) {
  7. $this->cachedSchema = $this->forceScheme ?: $this->request->getScheme().'://';
  8. }
  9. return $this->cachedSchema;
  10. }
  11. public function forceScheme($schema)
  12. {
  13. $this->cachedSchema = null;
  14. $this->forceScheme = $schema.'://';
  15. }

可以看出来, scheme 的生成存在优先级:

  • to 传入的 secure 参数
  • forceScheme 设置的 schema 参数
  • request 自带的 scheme

重定向 domain

重定向的 domain 由函数 formatRoot 生成:

  1. public function formatRoot($scheme, $root = null)
  2. {
  3. if (is_null($root)) {
  4. if (is_null($this->cachedRoot)) {
  5. $this->cachedRoot = $this->forcedRoot ?: $this->request->root();
  6. }
  7. $root = $this->cachedRoot;
  8. }
  9. $start = Str::startsWith($root, 'http://') ? 'http://' : 'https://';
  10. return preg_replace('~'.$start.'~', $scheme, $root, 1);
  11. }
  12. public function forceRootUrl($root)
  13. {
  14. $this->forcedRoot = rtrim($root, '/');
  15. $this->cachedRoot = null;
  16. }

scheme 类似,root 的生成也存在优先级:

  • to 传入的 root 参数
  • forceRootUrl 设置的 root 参数
  • request 自带的 root

重定向 path

重定向的 path 由三部分构成,一部分是 request 自带的 path,一部分是函数 to 原有的 path ,另一部分是函数 to 传入的参数:

  1. public function formatParameters($parameters)
  2. {
  3. $parameters = array_wrap($parameters);
  4. foreach ($parameters as $key => $parameter) {
  5. if ($parameter instanceof UrlRoutable) {
  6. $parameters[$key] = $parameter->getRouteKey();
  7. }
  8. }
  9. return $parameters;
  10. }
  11. protected function extractQueryString($path)
  12. {
  13. if (($queryPosition = strpos($path, '?')) !== false) {
  14. return [
  15. substr($path, 0, $queryPosition),
  16. substr($path, $queryPosition),
  17. ];
  18. }
  19. return [$path, ''];
  20. }

路由重定向源码分析

相对于 uri 的重定向来说,路由重定向的 schemerootpathqueryString 都要以路由自身的属性为第一优先级,此外还要利用额外参数来绑定路由的 uri 参数:

  1. public function route($name, $parameters = [], $absolute = true)
  2. {
  3. if (! is_null($route = $this->routes->getByName($name))) {
  4. return $this->toRoute($route, $parameters, $absolute);
  5. }
  6. throw new InvalidArgumentException("Route [{$name}] not defined.");
  7. }
  8. public function to($route, $parameters = [], $absolute = false)
  9. {
  10. $domain = $this->getRouteDomain($route, $parameters);
  11. $uri = $this->addQueryString($this->url->format(
  12. $root = $this->replaceRootParameters($route, $domain, $parameters),
  13. $this->replaceRouteParameters($route->uri(), $parameters)
  14. ), $parameters);
  15. if (preg_match('/\{.*?\}/', $uri)) {
  16. throw UrlGenerationException::forMissingParameters($route);
  17. }
  18. $uri = strtr(rawurlencode($uri), $this->dontEncode);
  19. if (! $absolute) {
  20. return '/'.ltrim(str_replace($root, '', $uri), '/');
  21. }
  22. return $uri;
  23. }

路由重定向 scheme

路由的重定向 scheme 需要先判断路由的 scheme 属性:

  1. protected function getRouteScheme($route)
  2. {
  3. if ($route->httpOnly()) {
  4. return 'http://';
  5. } elseif ($route->httpsOnly()) {
  6. return 'https://';
  7. } else {
  8. return $this->url->formatScheme(null);
  9. }
  10. }

路由重定向 domain

  1. public function to($route, $parameters = [], $absolute = false)
  2. {
  3. $domain = $this->getRouteDomain($route, $parameters);
  4. $uri = $this->addQueryString($this->url->format(
  5. $root = $this->replaceRootParameters($route, $domain, $parameters),
  6. $this->replaceRouteParameters($route->uri(), $parameters)
  7. ), $parameters);
  8. ...
  9. }
  10. protected function getRouteDomain($route, &$parameters)
  11. {
  12. return $route->domain() ? $this->formatDomain($route, $parameters) : null;
  13. }
  14. protected function formatDomain($route, &$parameters)
  15. {
  16. return $this->addPortToDomain(
  17. $this->getRouteScheme($route).$route->domain()
  18. );
  19. }
  20. protected function addPortToDomain($domain)
  21. {
  22. $secure = $this->request->isSecure();
  23. $port = (int) $this->request->getPort();
  24. return ($secure && $port === 443) || (! $secure && $port === 80)
  25. ? $domain : $domain.':'.$port;
  26. }
  27. protected function replaceRootParameters($route, $domain, &$parameters)
  28. {
  29. $scheme = $this->getRouteScheme($route);
  30. return $this->replaceRouteParameters(
  31. $this->url->formatRoot($scheme, $domain), $parameters
  32. );
  33. }

可以看出路由重定向时,域名的生成主要先经过函数 getRouteDomain, 判断路由是否有 domain 属性,如果有域名属性,则将会作为 formatRoot 函数的参数传入,否则就会默认启动 1uri 重定向的域名生成方法。

路由重定向参数绑定

路由重定向可以利用函数 replaceRootParameters 在域名当中参数绑定,,也可以在路径当中利用函数 replaceRouteParameters 进行参数绑定。参数绑定分为命名参数绑定与匿名参数绑定:

  1. protected function replaceRouteParameters($path, array &$parameters)
  2. {
  3. $path = $this->replaceNamedParameters($path, $parameters);
  4. $path = preg_replace_callback('/\{.*?\}/', function ($match) use (&$parameters) {
  5. return (empty($parameters) && ! Str::endsWith($match[0], '?}'))
  6. ? $match[0]
  7. : array_shift($parameters);
  8. }, $path);
  9. return trim(preg_replace('/\{.*?\?\}/', '', $path), '/');
  10. }

对于命名参数绑定,程序会分别从变量列表、默认变量列表中获取并替换路由参数对应的数值,若不存在该参数,则直接返回:

  1. protected function replaceNamedParameters($path, &$parameters)
  2. {
  3. return preg_replace_callback('/\{(.*?)\??\}/', function ($m) use (&$parameters) {
  4. if (isset($parameters[$m[1]])) {
  5. return Arr::pull($parameters, $m[1]);
  6. } elseif (isset($this->defaultParameters[$m[1]])) {
  7. return $this->defaultParameters[$m[1]];
  8. } else {
  9. return $m[0];
  10. }
  11. }, $path);
  12. }

命名参数绑定结束后,剩下的未被替换的路由参数将会被未命名的变量按顺序来替换。

路由重定向 queryString

如果变量列表在绑定路由后仍然有剩余,那么变量将会作为路由的 queryString

  1. protected function addQueryString($uri, array $parameters)
  2. {
  3. if (! is_null($fragment = parse_url($uri, PHP_URL_FRAGMENT))) {
  4. $uri = preg_replace('/#.*/', '', $uri);
  5. }
  6. $uri .= $this->getRouteQueryString($parameters);
  7. return is_null($fragment) ? $uri : $uri."#{$fragment}";
  8. }
  9. protected function getRouteQueryString(array $parameters)
  10. {
  11. if (count($parameters) == 0) {
  12. return '';
  13. }
  14. $query = http_build_query(
  15. $keyed = $this->getStringParameters($parameters)
  16. );
  17. if (count($keyed) < count($parameters)) {
  18. $query .= '&'.implode(
  19. '&', $this->getNumericParameters($parameters)
  20. );
  21. }
  22. return '?'.trim($query, '&');
  23. }

路由重定向结束

路由 uri 构建完成后,将会继续判断是否存在违背绑定的路由参数,是否显示 absolute 的路由地址

  1. public function to($route, $parameters = [], $absolute = false)
  2. {
  3. ...
  4. if (preg_match('/\{.*?\}/', $uri)) {
  5. throw UrlGenerationException::forMissingParameters($route);
  6. }
  7. $uri = strtr(rawurlencode($uri), $this->dontEncode);
  8. if (! $absolute) {
  9. return '/'.ltrim(str_replace($root, '', $uri), '/');
  10. }
  11. return $uri;
  12. }